home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * TimeMgr.h
- *
- * Copyright (c) 1986, 1987 THINK Technologies, Inc.
- * These interfaces are based on information copyrighted
- * by Apple Computer, Inc., 1985, 1986, 1987.
- *
- */
-
- #ifndef _TimeMgr_
- #define _TimeMgr_
-
- #ifndef _MacTypes_
- #include "MacTypes.h"
- #endif
-
-
- typedef struct TMTask {
- struct QElem *qLink;
- int qType;
- ProcPtr tmAddr;
- long tmCount;
- } TMTask;
-
-
- #endif _TimeMgr_